home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / linux / src / atalnx_3.lzh / atari-linux-0.01pl3 / tools / atari / makefile < prev    next >
Encoding:
Makefile  |  1994-06-14  |  395 b   |  22 lines

  1.  
  2. CC        := d:/gnu/bin/gcc.ttp
  3. CFLAGS    := -Wall -O2 -fno-defer-pop -mint -s
  4. LD        := d:/gnu/bin/gcc.ttp
  5. LDFLAGS    := -mint -D__GNUC__
  6. AS        := d:/gnu/bin/gcc.ttp -c
  7.  
  8. bootstra.ttp: boot_asm.o bootstra.o
  9.     $(LD) $(LDFLAGS) -o $@ $^
  10.     prgflags 7 7 $@
  11.     cp $@ d:/linux
  12.  
  13. bootstra.o: bootstra.c bootinfo.h
  14.  
  15. gen_nlis.o: gen_nlis.c
  16.  
  17. boot_asm.o: boot_asm.S
  18.  
  19. %.s: %.c
  20.     $(CC) $(CFLAGS) -S $^ -o $@
  21.  
  22.